CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/redeem/[id].tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2023 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
/*
6
* This file is part of CoCalc: Copyright © 2023 Sagemath, Inc.
7
* License: MS-RSL – see LICENSE.md for details
8
*/
9
10
import withCustomize from "lib/with-customize";
11
import Redeem from "../redeem";
12
export default Redeem;
13
14
export async function getServerSideProps(context) {
15
const { id } = context.params;
16
return await withCustomize({ context, props: { id } });
17
}
18
19